summaryrefslogtreecommitdiff
path: root/app/[lng]/evcp/(evcp)/menu-list/page.tsx
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-07-01 04:31:01 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-07-01 04:31:01 +0000
commit933589898bb26c1585b0585407e935f10e3be2ab (patch)
tree809d6d9a10052e3be091bf4a9c521f05df5c3559 /app/[lng]/evcp/(evcp)/menu-list/page.tsx
parenta9980dd9f0f53c9c90937947d4514c921ba05f7f (diff)
(최겸) 인포메이선 컴포넌트 테이블 별 추가 완료
Diffstat (limited to 'app/[lng]/evcp/(evcp)/menu-list/page.tsx')
-rw-r--r--app/[lng]/evcp/(evcp)/menu-list/page.tsx11
1 files changed, 7 insertions, 4 deletions
diff --git a/app/[lng]/evcp/(evcp)/menu-list/page.tsx b/app/[lng]/evcp/(evcp)/menu-list/page.tsx
index 84138320..6f56a2de 100644
--- a/app/[lng]/evcp/(evcp)/menu-list/page.tsx
+++ b/app/[lng]/evcp/(evcp)/menu-list/page.tsx
@@ -9,7 +9,7 @@ import { InitializeButton } from "@/lib/menu-list/table/initialize-button";
import { MenuListTable } from "@/lib/menu-list/table/menu-list-table";
import { Shell } from "@/components/shell"
import * as React from "react"
-
+import { InformationButton } from "@/components/information/information-button";
export default async function MenuListPage() {
// 초기 데이터 로드
const [menusResult, usersResult] = await Promise.all([
@@ -22,9 +22,12 @@ export default async function MenuListPage() {
<div className="flex items-center justify-between space-y-2">
<div className="flex items-center justify-between space-y-2">
<div>
- <h2 className="text-2xl font-bold tracking-tight">
- 메뉴 관리
- </h2>
+ <div className="flex items-center gap-2">
+ <h2 className="text-2xl font-bold tracking-tight">
+ 메뉴 관리
+ </h2>
+ <InformationButton pageCode="evcp/menu-list" />
+ </div>
<p className="text-muted-foreground">
각 메뉴별로 담당자를 지정하고 관리할 수 있습니다.
</p>